  ____   _   _         _       __      __                  _    _
 /  __\ | | |_|  ___  | | __  |  \    /  |  ____   _ __   |_| _| |_   ____   _ __
 | |    | |  _  /  _\ | |/ /  |   \  /   | /    \ | '_ \   _ |_  _ | /    \ | '_ \
 | |    | | | | | |   |   <   | |\ \/ /| | | || | | / \ | | |  | |   | || | | / \/
 | |___ | | | | | |__ | |\ \  | | \  / | | | || | | | | | | |  | |   | || | | |
 \____/ |_| |_| \___/ |_| \_\ |_|  \/  |_| \____/ |_| |_| |_|  |_|   \____/ |_|

                   http://www.go2cgi.com/free/clickmonitor.shtml                   


Installation and Configuration
------------------------------

	Open go.pl. If needed, edit the shebang line (#!/usr/bin/perl) to reflect
	the location of Perl on your server. If you are planning on running
	ClickMonitor on a Windows NT server, scroll down to the bottom of the
	script and comment out the flock(FILE,2); line (put a "#" in front of it).

	There are eight variables in go.pl to be configured. The most important is
	is the first, $count_page. Set this to the path to your count.html webpage.
	The path, not the URL. The page must be web-accessible as this is where
	you'll go to view to your hit counts. CHMOD it 777 (rwxrwxrwx).

	The next six variables control the way your count.html file will look. They
	should be self-explanatory, before each link on the page $link_open will be
	shown, after it $link_close. The same goes for the additional info and
	hits.

	The last variable, $image, is the URL to your default image file. When
	you're calling ClickMonitor through an image tag and you don't specify a
	SRC, this is the image that will be shown.

Operation and Use
-----------------

	ClickMonitor can be used in one of two ways. You can embed ClickMonitor in
	the HREF of your links or in the SRC's of images. To use ClickMonitor in
	your links just append the URL to go.pl before them and add "?url=".
	Example:

               <a href="/cgi-bin/go.pl?url=http://url/to/your.page">

	To use ClickMonitor in your image tags, do the same thing you do for links
	but instead of just append the URL to go.pl, also append "imgout=default".
	Example:

       <img src="/cgi-bin/go.pl?imgout=default&url=http://url/to/your.page">

	If you don't want to use the default image, in place of "default" put the
	URL to the image you want shown. Example:

   <img src="/cgi-bin/go.pl?imgout=/some/image.gif&url=http://url/to/your.page">

	You have the option of specifying additional link info, this will be shown
	alongside the link on your count.html page (reminding you of what the page
	is, perhaps). You can use additional info in both the link and image calls:

       <a href="/cgi-bin/go.pl?info=home+page&url=http://url/to/your.page">

<a href="/cgi-bin/go.pl?imgout=default&info=home+page&url=http://url/to/your.page">

	If you use any spaces in your additional info (as one was used in the
	examples above), replace them with pluses (+'s).

	To view your hit counts, look at your count.html page. To reset your
	counters, either edit the HTML of the page or simply re-uploaded the blank
	count.html file that came with ClickMonitor.
